home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / RTVBE210.ZIP / MAKEFILE < prev    next >
Text File  |  1997-01-06  |  776b  |  37 lines

  1. #;/************************************************************************
  2. #;*
  3. #;*     File        :   MAKEFILE.
  4. #;*
  5. #;*     Description :   Makefile for VESA 2.00 Lib
  6. #;*
  7. #;*     Copyright (C) 1994,97 Realtech
  8. #;*
  9. #;***********************************************************************/
  10.  
  11.  
  12. .EXTENSIONS:
  13. .EXTENSIONS: .exe .obj .asm .c .cpp
  14. .BEFORE
  15.     @set INCLUDE=.;$(%watcom)\h;$(%watcom)\h\win;..\include;
  16. CC   = wcc386 -Otexan -5 -WX -d0 
  17. ASM  = tasm /m5 /mx /zn /dCODE586 /d__C32__ /o /i\code\_asm
  18. LIB  = wlib
  19. LINK = wlink
  20.  
  21. .c.obj:
  22.   $(CC) $?
  23.  
  24. .cpp.obj:
  25.   $(CC) $?
  26.  
  27. .asm.obj:
  28.   $(ASM) $?
  29.  
  30. LIB_dependencies = wdpmi.obj &
  31.     _vesa2.obj &
  32.     dpmi.obj 
  33.  
  34.  
  35. ..\lib\rtvbelib.lib: $(LIB_dependencies) rtvbelib.lnk
  36.   $(LIB) -c -n -b $@ @rtvbelib.lnk
  37.